home *** CD-ROM | disk | FTP | other *** search
- //begin_lib <!-- Begin External JavaScript -- DO NOT REMOVE THIS LINE -->
-
- function jsStatusbar(){
- this.Items = new Array();
- this.Add = st_Add;
- this.Show = st_Show;
- this.Blank = st_Blank;
- }
-
- function st_Add(name,text){
- this.Items[name]=text;
- }
-
- function st_Show(name){
- window.status=this.Items[name];
- return true;
- }
-
- function st_Blank(){
- window.status = "";
- return true;
- }
-
- //end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->
-